home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Commands
/
Protocols
/
Selecting.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
208b
|
17 lines
// Selecting.h
#ifndef Selecting_h
#define Selecting_h
class Selecting
{
protected:
~Selecting() {}
public:
virtual bool CanSelectAll() const = 0;
virtual void SelectAll() = 0;
};
#endif